home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Narzedzia systemowe / Inno Setup 5.0.4 Beta / isetup-5.0.4-beta.exe / {app} / Examples / MyDll / Delphi / MyDll.dpr
Text File  |  2003-04-13  |  224b  |  15 lines

  1. library MyDll;
  2.  
  3. uses
  4.   Windows;
  5.  
  6. procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: PChar; uType: Cardinal); stdcall;
  7. begin
  8.   MessageBox(hWnd, lpText, lpCaption, uType);
  9. end;
  10.  
  11. exports MyDllFunc;
  12.  
  13. begin
  14. end.
  15.